bootable = bool(bootable)
xd = XendDomain.instance()
vm = xd.get_vm_with_dev_uuid('vbd', vbd_ref)
- vm.set_dev_property('vbd', vbd_ref, 'bootable', bootable)
+ vm.set_dev_property('vbd', vbd_ref, 'bootable', int(bootable))
xd.managed_config_save(vm)
return xen_api_success_void()
if param not in target:
target[param] = []
if dev_uuid not in target[param]:
- if dev_type == 'vbd' and 'bootable' not in dev_info:
- # Compat hack -- mark first disk bootable
- dev_info['bootable'] = int(not target[param])
+ if dev_type == 'vbd':
+ if 'bootable' not in dev_info:
+ # Compat hack -- mark first disk bootable
+ dev_info['bootable'] = int(not target[param])
+ else:
+ # ensure type of bootable is int (on xend restart
+ # it's of type str)
+ dev_info['bootable'] = int(dev_info['bootable'])
target[param].append(dev_uuid)
elif dev_type == 'tap' or dev_type == 'tap2':
if 'vbd_refs' not in target:
if 'bootable' not in dev_info:
# Compat hack -- mark first disk bootable
dev_info['bootable'] = int(not target['vbd_refs'])
+ else:
+ # ensure type of bootable is int (on xend restart it's
+ # of type str)
+ dev_info['bootable'] = int(dev_info['bootable'])
target['vbd_refs'].append(dev_uuid)
elif dev_type == 'vfb':